From: Jan Beulich Date: Tue, 3 Feb 2015 10:38:22 +0000 (+0100) Subject: IOMMU/x86: correct page_list_first() use X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3794 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=1c3808f4b5249691d9e15ec8d268158d52c6d899;p=xen.git IOMMU/x86: correct page_list_first() use Comparing its result against NULL is unsafe when page lists use normal list entries for linking together - page_list_empty() needs to be used instead. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper Reviewed-by: Tim Deegan --- diff --git a/xen/drivers/passthrough/x86/iommu.c b/xen/drivers/passthrough/x86/iommu.c index ce0ca5aa39..52d89482b8 100644 --- a/xen/drivers/passthrough/x86/iommu.c +++ b/xen/drivers/passthrough/x86/iommu.c @@ -85,8 +85,9 @@ int arch_iommu_populate_page_table(struct domain *d) * first few entries. */ page_list_move(&d->page_list, &d->arch.relmem_list); - while ( (page = page_list_first(&d->page_list)) != NULL && - (page->count_info & (PGC_state|PGC_broken)) ) + while ( !page_list_empty(&d->page_list) && + (page = page_list_first(&d->page_list), + (page->count_info & (PGC_state|PGC_broken))) ) { page_list_del(page, &d->page_list); page_list_add_tail(page, &d->arch.relmem_list);